home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / utmisc1 / alcun101.lha / romdump / Imakefile next >
Makefile  |  1995-01-12  |  1KB  |  45 lines

  1. /*
  2.  *  This file is part of x48, an emulator of the HP-48sx Calculator.
  3.  *  Copyright (C) 1994  Eddie C. Dost  (ecd@dressler.de)
  4.  * 
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  * 
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  * 
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *
  20.  *  YOU SHOULD NOT NEED TO EDIT THIS FILE, EDIT ../config.h INSTEAD.
  21.  */
  22.  
  23. #include "../config.h"
  24.  
  25. #ifdef HAVE_CLASS
  26. CLASS = class
  27. #else
  28. CLASS = @echo warning: should execute: class
  29. #endif
  30.  
  31.    TARFILES = Imakefile ROMDump README ROMDump.s
  32.  
  33. all:: ROMDump
  34.  
  35. ROMDump: ROMDump.s
  36.     $(CLASS) ROMDump.s -o $@ -exe
  37.  
  38. depend::
  39.  
  40. install::
  41.  
  42. echo_tarfiles:
  43.     @echo $(TARFILES)
  44.  
  45.